From a7087ba85448dbe3c16d99b90a77a55dfb3dfbbe Mon Sep 17 00:00:00 2001 From: Haider Agha Date: Mon, 16 May 2022 23:05:27 -0400 Subject: [PATCH 1/5] Changes --- src/Compute/Compute/ChangeLog.md | 2 + .../VirtualMachineRunCommandMethod.cs | 8 ++++ .../VirtualMachineScaleSetUpdateMethod.cs | 26 +++++++++++ ...irtualMachineScaleSetVMRunCommandMethod.cs | 8 ++++ .../Compute/help/Invoke-AzVMRunCommand.md | 31 +++++++++---- .../Compute/help/Invoke-AzVmssVMRunCommand.md | 29 ++++++++++--- src/Compute/Compute/help/Update-AzVmss.md | 43 +++++++++++++------ 7 files changed, 118 insertions(+), 29 deletions(-) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index cb8b9571bb39..96f69c90bca4 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -34,6 +34,8 @@ - `New-AzSnapshotUpdateConfig` - `New-AzGalleryImageDefinition` * Added `-InstanceView` parameter to `Get-AzRestorePoint` +* New Parameters -ScriptEncoding and -ScriptString for Invoke-AzvmRunCommand and Invoke-AzvmssRunCommand +* New Parameter -ScaleInPolicyForceDeletion added to Update-Azvmss ## Version 4.26.0 * Added `-ImageReferenceId` parameter to following cmdlets: `New-AzVm`, `New-AzVmConfig`, `New-AzVmss`, `Set-AzVmssStorageProfile` diff --git a/src/Compute/Compute/Generated/VirtualMachine/VirtualMachineRunCommandMethod.cs b/src/Compute/Compute/Generated/VirtualMachine/VirtualMachineRunCommandMethod.cs index 508dd47b9d08..dc191fd5afd8 100644 --- a/src/Compute/Compute/Generated/VirtualMachine/VirtualMachineRunCommandMethod.cs +++ b/src/Compute/Compute/Generated/VirtualMachine/VirtualMachineRunCommandMethod.cs @@ -70,6 +70,10 @@ public override void ExecuteCmdlet() string fileContent = Commands.Common.Authentication.Abstractions.FileUtilities.DataStore.ReadFileAsText(filePath.FullName); parameters.Script = fileContent.Split(new string[] { "\r\n", "\n", "\r" }, StringSplitOptions.RemoveEmptyEntries); } + else if (this.ScriptString != null) + { + parameters.Script = new List() { this.ScriptString }; + } if (this.Parameter != null) { var vParameter = new List(); @@ -118,6 +122,10 @@ public override void ExecuteCmdlet() [AllowNull] public string ScriptPath { get; set; } + [Parameter( + Mandatory = false)] + public string ScriptString { get; set; } + [Parameter( Mandatory = false)] [AllowNull] diff --git a/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetUpdateMethod.cs b/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetUpdateMethod.cs index 1f572560a7c7..e176ba946e7e 100644 --- a/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetUpdateMethod.cs +++ b/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetUpdateMethod.cs @@ -234,6 +234,10 @@ public override void ExecuteCmdlet() Mandatory = false)] public bool Overprovision { get; set; } + [Parameter( + Mandatory = false)] + public bool ScaleInPolicyForceDeletion { get; set; } + [Parameter( Mandatory = false)] [ValidateNotNullOrEmpty] @@ -956,6 +960,19 @@ private void BuildPatchObject() this.VirtualMachineScaleSetUpdate.ScaleInPolicy.Rules = this.ScaleInPolicy; } + if (this.IsParameterBound(c => c.ScaleInPolicyForceDeletion)) + { + if (this.VirtualMachineScaleSetUpdate == null) + { + this.VirtualMachineScaleSetUpdate = new VirtualMachineScaleSetUpdate(); + } + if (this.VirtualMachineScaleSetUpdate.ScaleInPolicy == null) + { + this.VirtualMachineScaleSetUpdate.ScaleInPolicy = new ScaleInPolicy(); + } + this.VirtualMachineScaleSetUpdate.ScaleInPolicy.ForceDeletion = this.ScaleInPolicyForceDeletion; + } + if (this.IsParameterBound(c => c.SinglePlacementGroup)) { if (this.VirtualMachineScaleSetUpdate == null) @@ -1677,6 +1694,15 @@ private void BuildPutObject() this.VirtualMachineScaleSet.ScaleInPolicy.Rules = this.ScaleInPolicy; } + if (this.IsParameterBound(c => c.ScaleInPolicyForceDeletion)) + { + if (this.VirtualMachineScaleSet.ScaleInPolicy == null) + { + this.VirtualMachineScaleSet.ScaleInPolicy = new ScaleInPolicy(); + } + this.VirtualMachineScaleSet.ScaleInPolicy.ForceDeletion = this.ScaleInPolicyForceDeletion; + } + if (this.IsParameterBound(c => c.SinglePlacementGroup)) { this.VirtualMachineScaleSet.SinglePlacementGroup = this.SinglePlacementGroup; diff --git a/src/Compute/Compute/Generated/VirtualMachineScaleSetVM/VirtualMachineScaleSetVMRunCommandMethod.cs b/src/Compute/Compute/Generated/VirtualMachineScaleSetVM/VirtualMachineScaleSetVMRunCommandMethod.cs index 9ca652c79ad1..89576899497e 100644 --- a/src/Compute/Compute/Generated/VirtualMachineScaleSetVM/VirtualMachineScaleSetVMRunCommandMethod.cs +++ b/src/Compute/Compute/Generated/VirtualMachineScaleSetVM/VirtualMachineScaleSetVMRunCommandMethod.cs @@ -74,6 +74,10 @@ public override void ExecuteCmdlet() string fileContent = Commands.Common.Authentication.Abstractions.FileUtilities.DataStore.ReadFileAsText(filePath.FullName); parameters.Script = fileContent.Split(new string[] { "\r\n", "\n", "\r" }, StringSplitOptions.RemoveEmptyEntries); } + else if (this.ScriptString != null) + { + parameters.Script = new List() { this.ScriptString }; + } if (this.Parameter != null) { var vParameter = new List(); @@ -129,6 +133,10 @@ public override void ExecuteCmdlet() [AllowNull] public string ScriptPath { get; set; } + [Parameter( + Mandatory = false)] + public string ScriptString { get; set; } + [Parameter( Mandatory = false)] [AllowNull] diff --git a/src/Compute/Compute/help/Invoke-AzVMRunCommand.md b/src/Compute/Compute/help/Invoke-AzVMRunCommand.md index 47d78844db94..34ca4be71b2d 100644 --- a/src/Compute/Compute/help/Invoke-AzVMRunCommand.md +++ b/src/Compute/Compute/help/Invoke-AzVMRunCommand.md @@ -15,22 +15,22 @@ Run a command on the VM. ### DefaultParameter (Default) ``` Invoke-AzVMRunCommand [-ResourceGroupName] [-VMName] -CommandId - [-ScriptPath ] [-Parameter ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-ScriptPath ] [-ScriptString ] [-Parameter ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResourceIdParameter ``` -Invoke-AzVMRunCommand -CommandId [-ScriptPath ] [-Parameter ] - [-ResourceId] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Invoke-AzVMRunCommand -CommandId [-ScriptPath ] [-ScriptString ] + [-Parameter ] [-ResourceId] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### VMParameter ``` -Invoke-AzVMRunCommand -CommandId [-ScriptPath ] [-Parameter ] - [-VM] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Invoke-AzVMRunCommand -CommandId [-ScriptPath ] [-ScriptString ] + [-Parameter ] [-VM] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -166,6 +166,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ScriptString +{{ Fill ScriptString Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VM The PS virtual machine object. diff --git a/src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md b/src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md index ff9ad57cce76..d6cc895657fd 100644 --- a/src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md +++ b/src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md @@ -15,22 +15,22 @@ Run command on the Virtual Machine Scale Set VM. ### DefaultParameter (Default) ``` Invoke-AzVmssVMRunCommand [-ResourceGroupName] [-VMScaleSetName] [-InstanceId] - -CommandId [-ScriptPath ] [-Parameter ] [-AsJob] + -CommandId [-ScriptPath ] [-ScriptString ] [-Parameter ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResourceIdParameter ``` -Invoke-AzVmssVMRunCommand -CommandId [-ScriptPath ] [-Parameter ] - [-ResourceId] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Invoke-AzVmssVMRunCommand -CommandId [-ScriptPath ] [-ScriptString ] + [-Parameter ] [-ResourceId] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### ObjectParameter ``` -Invoke-AzVmssVMRunCommand -CommandId [-ScriptPath ] [-Parameter ] - [-VirtualMachineScaleSetVM] [-AsJob] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Invoke-AzVmssVMRunCommand -CommandId [-ScriptPath ] [-ScriptString ] + [-Parameter ] [-VirtualMachineScaleSetVM] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -175,6 +175,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ScriptString +{{ Fill ScriptString Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VirtualMachineScaleSetVM The PS Virtual Machine Scale Set VM Object. diff --git a/src/Compute/Compute/help/Update-AzVmss.md b/src/Compute/Compute/help/Update-AzVmss.md index b7a983012b67..2100efe0f0bc 100644 --- a/src/Compute/Compute/help/Update-AzVmss.md +++ b/src/Compute/Compute/help/Update-AzVmss.md @@ -25,11 +25,11 @@ Update-AzVmss [-ResourceGroupName] [-VMScaleSetName] [-ImageUri ] [-LicenseType ] [-ManagedDiskStorageAccountType ] [-MaxBatchInstancePercent ] [-MaxPrice ] [-MaxUnhealthyInstancePercent ] [-MaxUnhealthyUpgradedInstancePercent ] [-OsDiskCaching ] - [-OsDiskWriteAccelerator ] [-Overprovision ] [-PauseTimeBetweenBatches ] - [-PlanName ] [-PlanProduct ] [-PlanPromotionCode ] [-PlanPublisher ] - [-ProvisionVMAgent ] [-ProximityPlacementGroupId ] [-ScaleInPolicy ] - [-SinglePlacementGroup ] [-SkipExtensionsOnOverprovisionedVMs ] [-SkuCapacity ] - [-SkuName ] [-SkuTier ] [-Tag ] + [-OsDiskWriteAccelerator ] [-Overprovision ] [-ScaleInPolicyForceDeletion ] + [-PauseTimeBetweenBatches ] [-PlanName ] [-PlanProduct ] [-PlanPromotionCode ] + [-PlanPublisher ] [-ProvisionVMAgent ] [-ProximityPlacementGroupId ] + [-ScaleInPolicy ] [-SinglePlacementGroup ] [-SkipExtensionsOnOverprovisionedVMs ] + [-SkuCapacity ] [-SkuName ] [-SkuTier ] [-Tag ] [-TerminateScheduledEventNotBeforeTimeoutInMinutes ] [-TerminateScheduledEvents ] [-TimeZone ] [-UltraSSDEnabled ] [-UpgradePolicyMode ] [-CapacityReservationGroupId ] [-VhdContainer ] [-AsJob] [-EncryptionAtHost ] @@ -50,15 +50,15 @@ Update-AzVmss [-ResourceGroupName] [-VMScaleSetName] [-ManagedDiskStorageAccountType ] [-MaxBatchInstancePercent ] [-MaxPrice ] [-MaxUnhealthyInstancePercent ] [-MaxUnhealthyUpgradedInstancePercent ] [-OsDiskCaching ] [-OsDiskWriteAccelerator ] [-Overprovision ] - [-PauseTimeBetweenBatches ] [-PlanName ] [-PlanProduct ] [-PlanPromotionCode ] - [-PlanPublisher ] [-ProvisionVMAgent ] [-ProximityPlacementGroupId ] - [-ScaleInPolicy ] [-SinglePlacementGroup ] [-SkipExtensionsOnOverprovisionedVMs ] - [-SkuCapacity ] [-SkuName ] [-SkuTier ] [-Tag ] - [-TerminateScheduledEventNotBeforeTimeoutInMinutes ] [-TerminateScheduledEvents ] - [-TimeZone ] [-UltraSSDEnabled ] [-UpgradePolicyMode ] - [-CapacityReservationGroupId ] [-VhdContainer ] [-AsJob] [-EncryptionAtHost ] - [-UserData ] [-AutomaticRepairAction ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-ScaleInPolicyForceDeletion ] [-PauseTimeBetweenBatches ] [-PlanName ] + [-PlanProduct ] [-PlanPromotionCode ] [-PlanPublisher ] [-ProvisionVMAgent ] + [-ProximityPlacementGroupId ] [-ScaleInPolicy ] [-SinglePlacementGroup ] + [-SkipExtensionsOnOverprovisionedVMs ] [-SkuCapacity ] [-SkuName ] [-SkuTier ] + [-Tag ] [-TerminateScheduledEventNotBeforeTimeoutInMinutes ] + [-TerminateScheduledEvents ] [-TimeZone ] [-UltraSSDEnabled ] + [-UpgradePolicyMode ] [-CapacityReservationGroupId ] [-VhdContainer ] [-AsJob] + [-EncryptionAtHost ] [-UserData ] [-AutomaticRepairAction ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -723,6 +723,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ScaleInPolicyForceDeletion +{{ Fill ScaleInPolicyForceDeletion Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SinglePlacementGroup Specifies the single placement group. From 7e6e5e187b51d699d7cd4cfdc62c85282153a74f Mon Sep 17 00:00:00 2001 From: Haider Agha Date: Mon, 16 May 2022 23:19:13 -0400 Subject: [PATCH 2/5] adding test --- .../TestRestorePoints.json | 2045 ++++++----------- 1 file changed, 654 insertions(+), 1391 deletions(-) diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.RestorePointsTests/TestRestorePoints.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.RestorePointsTests/TestRestorePoints.json index fa842f5f1c98..8d07c9e3b8a2 100644 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.RestorePointsTests/TestRestorePoints.json +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.RestorePointsTests/TestRestorePoints.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac8d7764-239e-4cf4-aebc-f9f32f57a02f" + "73147428-2629-4cdc-8f08-885382392d65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "dfd11b9c-f504-475a-adf9-991aec25b4d2" + "71723a54-500f-4768-9514-3620a7f82556" ], "x-ms-correlation-request-id": [ - "dfd11b9c-f504-475a-adf9-991aec25b4d2" + "71723a54-500f-4768-9514-3620a7f82556" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141113Z:dfd11b9c-f504-475a-adf9-991aec25b4d2" + "CENTRALUS:20220419T143526Z:71723a54-500f-4768-9514-3620a7f82556" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:12 GMT" + "Tue, 19 Apr 2022 14:35:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,10 +54,10 @@ "-1" ], "Content-Length": [ - "65720" + "65621" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\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 \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\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 \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\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\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/communityGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints/diskRestorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnostics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnosticOperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\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 \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\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 \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\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\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints/diskRestorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnostics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnosticOperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/communityGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { @@ -67,13 +67,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -90,13 +90,13 @@ "11999" ], "x-ms-request-id": [ - "5a57b1e7-6e62-4482-a055-ebc57c80f5e8" + "8e260e17-19b2-46f8-9173-bdce96a8529f" ], "x-ms-correlation-request-id": [ - "5a57b1e7-6e62-4482-a055-ebc57c80f5e8" + "8e260e17-19b2-46f8-9173-bdce96a8529f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141116Z:5a57b1e7-6e62-4482-a055-ebc57c80f5e8" + "CENTRALUS:20220419T143529Z:8e260e17-19b2-46f8-9173-bdce96a8529f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:15 GMT" + "Tue, 19 Apr 2022 14:35:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,26 +114,26 @@ "-1" ], "Content-Length": [ - "65720" + "65621" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\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 \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\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 \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\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\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/communityGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints/diskRestorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnostics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnosticOperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\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 \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\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 \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\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\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/applications/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-03\",\r\n \"2021-10-01\",\r\n \"2021-07-01\",\r\n \"2021-03-01\",\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints/diskRestorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-02\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-04-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnostics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/diagnosticOperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Jio India West\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"South Africa North\",\r\n \"Central US\",\r\n \"West US 3\",\r\n \"West US\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/communityGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-03-01\",\r\n \"2022-01-03\",\r\n \"2021-11-01\",\r\n \"2021-07-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7634?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc2MzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps6388?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYzODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4cdb95d3-825f-4ff0-91ff-05f29d5ab36e" + "1ffeab2b-0aa4-4bbe-a737-c9257e324e35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -156,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "064c991c-b730-4bfb-96d7-5f63b162bdc2" + "9a72d3cc-aeca-47e2-9eab-a81c8a4d6fbe" ], "x-ms-correlation-request-id": [ - "064c991c-b730-4bfb-96d7-5f63b162bdc2" + "9a72d3cc-aeca-47e2-9eab-a81c8a4d6fbe" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141115Z:064c991c-b730-4bfb-96d7-5f63b162bdc2" + "CENTRALUS:20220419T143527Z:9a72d3cc-aeca-47e2-9eab-a81c8a4d6fbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:15 GMT" + "Tue, 19 Apr 2022 14:35:27 GMT" ], "Content-Length": [ "179" @@ -183,23 +183,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634\",\r\n \"name\": \"crptestps7634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388\",\r\n \"name\": \"crptestps6388\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/images/Win2012R2Datacenter?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9XaW4yMDEyUjJEYXRhY2VudGVyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/images/Win2012R2Datacenter?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9XaW4yMDEyUjJEYXRhY2VudGVyP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -216,13 +216,13 @@ "gateway" ], "x-ms-request-id": [ - "02c8cc51-7faa-492e-8a52-7e971e75f5b9" + "267d0715-a6f3-4a3f-9074-769bea9b12aa" ], "x-ms-correlation-request-id": [ - "02c8cc51-7faa-492e-8a52-7e971e75f5b9" + "267d0715-a6f3-4a3f-9074-769bea9b12aa" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141116Z:02c8cc51-7faa-492e-8a52-7e971e75f5b9" + "CENTRALUS:20220419T143528Z:267d0715-a6f3-4a3f-9074-769bea9b12aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:15 GMT" + "Tue, 19 Apr 2022 14:35:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,23 +243,23 @@ "229" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/Win2012R2Datacenter' under resource group 'crptestps7634' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/Win2012R2Datacenter' under resource group 'crptestps6388' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -276,13 +276,13 @@ "gateway" ], "x-ms-request-id": [ - "84908c45-42ce-41e5-8a16-5c8b8a2564df" + "0e554518-d7dd-4eac-a0e3-db3cc65f1570" ], "x-ms-correlation-request-id": [ - "84908c45-42ce-41e5-8a16-5c8b8a2564df" + "0e554518-d7dd-4eac-a0e3-db3cc65f1570" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141117Z:84908c45-42ce-41e5-8a16-5c8b8a2564df" + "CENTRALUS:20220419T143529Z:0e554518-d7dd-4eac-a0e3-db3cc65f1570" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:16 GMT" + "Tue, 19 Apr 2022 14:35:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,20 +303,20 @@ "224" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/vm123' under resource group 'crptestps7634' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/vm123' under resource group 'crptestps6388' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -330,35 +330,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998" + "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd50d02a-89b7-4e6f-af57-b81007179464" + "d9696ee1-cfb8-4b9a-afc0-7b397c422d85" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-correlation-request-id": [ - "ed4f06c5-1091-48e3-a34b-95a89e884be9" + "78022b34-251b-463f-a348-fe0dfac61e65" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141233Z:ed4f06c5-1091-48e3-a34b-95a89e884be9" + "CENTRALUS:20220419T143642Z:78022b34-251b-463f-a348-fe0dfac61e65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:33 GMT" + "Tue, 19 Apr 2022 14:36:41 GMT" ], "Content-Length": [ - "2108" + "2066" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,23 +367,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"98d2f491-c5cd-4a7d-b028-48e130f15545\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20371.220504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/disks/vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-13T10:11:29.2980883-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4ed69e41-261f-4a48-a037-f10885faea40\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20337.220408\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/disks/vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-19T10:35:41.8478794-04:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53caa431-8c93-42c6-af6f-7f187e9e3f3e" + "000a118e-6c42-4ce7-8033-520935fa89e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -397,13 +397,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997" + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7bb669b-307a-424c-b056-3f0733f92f76" + "5e3039b8-559f-41ac-bd53-a65a24afff35" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -413,19 +413,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "6b733694-d84e-4f87-ba65-6f676c5da575" + "d0f931d2-8339-453f-a823-fc5e680645f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141234Z:6b733694-d84e-4f87-ba65-6f676c5da575" + "CENTRALUS:20220419T143643Z:d0f931d2-8339-453f-a823-fc5e680645f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:33 GMT" + "Tue, 19 Apr 2022 14:36:42 GMT" ], "Content-Length": [ - "2108" + "2066" ], "Content-Type": [ "application/json; charset=utf-8" @@ -434,23 +434,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"98d2f491-c5cd-4a7d-b028-48e130f15545\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20371.220504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/disks/vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-05-13T10:11:29.2980883-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4ed69e41-261f-4a48-a037-f10885faea40\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20337.220408\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/disks/vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-19T10:35:41.8478794-04:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7634?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc2MzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps6388?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYzODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -467,13 +467,13 @@ "11999" ], "x-ms-request-id": [ - "dbdef995-a0dd-4ac7-b62d-a83edf590fd9" + "acd1ccbb-3664-412d-a19e-9dbfa9f24c7e" ], "x-ms-correlation-request-id": [ - "dbdef995-a0dd-4ac7-b62d-a83edf590fd9" + "acd1ccbb-3664-412d-a19e-9dbfa9f24c7e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141117Z:dbdef995-a0dd-4ac7-b62d-a83edf590fd9" + "CENTRALUS:20220419T143529Z:acd1ccbb-3664-412d-a19e-9dbfa9f24c7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -482,7 +482,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:16 GMT" + "Tue, 19 Apr 2022 14:35:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -494,26 +494,26 @@ "179" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634\",\r\n \"name\": \"crptestps7634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388\",\r\n \"name\": \"crptestps6388\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtMTIzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtMTIzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ] }, "ResponseHeaders": { @@ -527,13 +527,13 @@ "gateway" ], "x-ms-request-id": [ - "d252507f-0790-406c-bbaa-82dce3a7654f" + "2c69147c-65b4-4d55-9b17-4df4c2a9369c" ], "x-ms-correlation-request-id": [ - "d252507f-0790-406c-bbaa-82dce3a7654f" + "2c69147c-65b4-4d55-9b17-4df4c2a9369c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141117Z:d252507f-0790-406c-bbaa-82dce3a7654f" + "CENTRALUS:20220419T143530Z:2c69147c-65b4-4d55-9b17-4df4c2a9369c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -542,7 +542,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:16 GMT" + "Tue, 19 Apr 2022 14:35:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -554,23 +554,23 @@ "226" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/vm123' under resource group 'crptestps7634' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/vm123' under resource group 'crptestps6388' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtMTIzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtMTIzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ] }, "ResponseHeaders": { @@ -581,16 +581,16 @@ "no-cache" ], "ETag": [ - "W/\"d0874482-05d2-4d22-8623-d8acb8a4385d\"" + "W/\"5b6baad2-5f41-4e16-a2dd-0a731679f723\"" ], "x-ms-request-id": [ - "3d633487-d169-404d-8548-58133664583d" + "b4962470-8fad-455c-bdf1-d53507ea7478" ], "x-ms-correlation-request-id": [ - "930f31c8-7753-467a-8a0c-31927ffcd167" + "bf483c1b-ea6e-4c0b-acf3-3d084a7877d3" ], "x-ms-arm-service-request-id": [ - "7468c908-d167-4136-9eca-4c0eec43e250" + "81afc527-125e-4ff7-a766-8bf4009286e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -603,13 +603,13 @@ "11999" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141126Z:930f31c8-7753-467a-8a0c-31927ffcd167" + "CENTRALUS:20220419T143538Z:bf483c1b-ea6e-4c0b-acf3-3d084a7877d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:26 GMT" + "Tue, 19 Apr 2022 14:35:38 GMT" ], "Content-Length": [ "1836" @@ -621,26 +621,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123\",\r\n \"etag\": \"W/\\\"d0874482-05d2-4d22-8623-d8acb8a4385d\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28a9c272-f1b0-46d7-9789-451c80f296f4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123/ipConfigurations/vm123\",\r\n \"etag\": \"W/\\\"d0874482-05d2-4d22-8623-d8acb8a4385d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"2evgqfkotzzujbo4lb3l1oaxwc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123\",\r\n \"etag\": \"W/\\\"5b6baad2-5f41-4e16-a2dd-0a731679f723\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccea89cc-596e-448b-86dc-318c928bbf38\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123/ipConfigurations/vm123\",\r\n \"etag\": \"W/\\\"5b6baad2-5f41-4e16-a2dd-0a731679f723\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"m5nnpw055acu1fp2u0sbpdyo3b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ] }, "ResponseHeaders": { @@ -654,13 +654,13 @@ "gateway" ], "x-ms-request-id": [ - "ea16369d-e902-4827-8d26-94a5445bedb7" + "96b7c70a-4240-4e12-bff9-93ddb6caaf00" ], "x-ms-correlation-request-id": [ - "ea16369d-e902-4827-8d26-94a5445bedb7" + "96b7c70a-4240-4e12-bff9-93ddb6caaf00" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141117Z:ea16369d-e902-4827-8d26-94a5445bedb7" + "CENTRALUS:20220419T143530Z:96b7c70a-4240-4e12-bff9-93ddb6caaf00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,7 +669,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:16 GMT" + "Tue, 19 Apr 2022 14:35:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -681,23 +681,23 @@ "230" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/vm123' under resource group 'crptestps7634' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/vm123' under resource group 'crptestps6388' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ] }, "ResponseHeaders": { @@ -708,16 +708,16 @@ "no-cache" ], "ETag": [ - "W/\"878c272d-9fa9-4df6-8ed5-524014e626af\"" + "W/\"d8789d0f-3ee8-44f9-a833-9686ae944257\"" ], "x-ms-request-id": [ - "a6ea5ee1-ae19-4843-9b23-813e46255a3e" + "9272faa6-e99b-4820-a84a-ad230d26020c" ], "x-ms-correlation-request-id": [ - "5ad2d215-1674-429b-940c-1e5453faf286" + "d496f796-586a-422b-a91c-010b0f2be55c" ], "x-ms-arm-service-request-id": [ - "28fe9945-22da-410e-983a-04d31b0c453d" + "fab4c58d-761e-45e5-ae52-5533541aa807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -730,13 +730,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141124Z:5ad2d215-1674-429b-940c-1e5453faf286" + "CENTRALUS:20220419T143536Z:d496f796-586a-422b-a91c-010b0f2be55c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:23 GMT" + "Tue, 19 Apr 2022 14:35:36 GMT" ], "Content-Length": [ "8291" @@ -748,26 +748,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f089ddcb-3f01-426b-9007-7f7c93b8ca6c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"vm1233389\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/securityRules/vm1233389\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vm1235985\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/securityRules/vm1235985\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"5985\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"878c272d-9fa9-4df6-8ed5-524014e626af\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29a7b1db-9893-407d-90c1-d3b644ee86b1\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"vm1233389\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/securityRules/vm1233389\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vm1235985\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/securityRules/vm1235985\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"5985\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d8789d0f-3ee8-44f9-a833-9686ae944257\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ] }, "ResponseHeaders": { @@ -781,13 +781,13 @@ "gateway" ], "x-ms-request-id": [ - "12383bea-ca11-4b5b-9bd8-ef8deff0badb" + "b323b321-8ac3-4da4-83c3-616b4547da14" ], "x-ms-correlation-request-id": [ - "12383bea-ca11-4b5b-9bd8-ef8deff0badb" + "b323b321-8ac3-4da4-83c3-616b4547da14" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141117Z:12383bea-ca11-4b5b-9bd8-ef8deff0badb" + "CENTRALUS:20220419T143530Z:b323b321-8ac3-4da4-83c3-616b4547da14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,7 +796,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:17 GMT" + "Tue, 19 Apr 2022 14:35:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -808,23 +808,23 @@ "224" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vm123' under resource group 'crptestps7634' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vm123' under resource group 'crptestps6388' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ] }, "ResponseHeaders": { @@ -835,16 +835,16 @@ "no-cache" ], "ETag": [ - "W/\"778701b7-6924-4495-9ac9-664a53801a45\"" + "W/\"0ee2c449-f4f9-470a-84f7-ea30758e94e7\"" ], "x-ms-request-id": [ - "f37b8d80-a299-4457-ae78-5513607bf54d" + "b5c7cf5b-cbad-406a-a2a7-56bfb52c111f" ], "x-ms-correlation-request-id": [ - "3a8605e4-8a07-4018-8f4a-1ffa1bc0a496" + "82003603-2de6-4a44-a6e7-caf1442843b9" ], "x-ms-arm-service-request-id": [ - "ea028558-3fff-4102-ab21-23ef9bde757e" + "abf97682-28e2-4eba-9a07-777b49ef8e58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -857,13 +857,13 @@ "11998" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141123Z:3a8605e4-8a07-4018-8f4a-1ffa1bc0a496" + "CENTRALUS:20220419T143536Z:82003603-2de6-4a44-a6e7-caf1442843b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:23 GMT" + "Tue, 19 Apr 2022 14:35:35 GMT" ], "Content-Length": [ "1214" @@ -875,26 +875,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123\",\r\n \"etag\": \"W/\\\"778701b7-6924-4495-9ac9-664a53801a45\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"15682ae1-9e4e-4473-85de-587abdb817b2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\",\r\n \"etag\": \"W/\\\"778701b7-6924-4495-9ac9-664a53801a45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\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 }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123\",\r\n \"etag\": \"W/\\\"0ee2c449-f4f9-470a-84f7-ea30758e94e7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dbd7da67-f85f-4d05-95fc-a6a4178f0ee9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\",\r\n \"etag\": \"W/\\\"0ee2c449-f4f9-470a-84f7-ea30758e94e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\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 }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"vm123\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -914,19 +914,19 @@ "3" ], "x-ms-request-id": [ - "664e27ce-7f56-42ad-a6c2-804e0dbef1c8" + "67ef6885-0401-481a-95e2-5a54d661b7b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/664e27ce-7f56-42ad-a6c2-804e0dbef1c8?api-version=2020-11-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/67ef6885-0401-481a-95e2-5a54d661b7b0?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "662e4ffc-2857-4fed-80a2-7a4f65f6f5ca" + "922c14a7-d42a-4ef9-8efa-c1d24d03aff2" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "7b5de8d8-ac75-429e-ab4c-a40598c0b3a0" + "2557a767-6a4f-4829-9396-6b86e27cec39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -939,13 +939,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141120Z:662e4ffc-2857-4fed-80a2-7a4f65f6f5ca" + "CENTRALUS:20220419T143532Z:922c14a7-d42a-4ef9-8efa-c1d24d03aff2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:20 GMT" + "Tue, 19 Apr 2022 14:35:32 GMT" ], "Content-Length": [ "1212" @@ -957,26 +957,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123\",\r\n \"etag\": \"W/\\\"5c4dc263-7971-4cdf-9fbe-17e536f8f127\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"15682ae1-9e4e-4473-85de-587abdb817b2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\",\r\n \"etag\": \"W/\\\"5c4dc263-7971-4cdf-9fbe-17e536f8f127\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\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 }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123\",\r\n \"etag\": \"W/\\\"c206cf02-8d1f-43e3-bded-72a1ec4e1af4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dbd7da67-f85f-4d05-95fc-a6a4178f0ee9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\",\r\n \"etag\": \"W/\\\"c206cf02-8d1f-43e3-bded-72a1ec4e1af4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\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 }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy92bTEyMz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"vm1233389\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"5985\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"vm1235985\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,19 +996,19 @@ "3" ], "x-ms-request-id": [ - "ff8a5b8e-917b-4c6b-a352-9141791dedac" + "8688dc5d-345e-42d4-b7aa-fd438d19b92c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/ff8a5b8e-917b-4c6b-a352-9141791dedac?api-version=2020-11-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/8688dc5d-345e-42d4-b7aa-fd438d19b92c?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "1bc6a5c0-200f-4a49-98a5-fc8dfeaf3c9e" + "3d267117-8633-4e31-8576-65c0466e9555" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6309744b-42d6-401a-ad4c-bf4bd14ef157" + "72dc7bff-3ea5-49ee-940c-b63ea39f2b7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1021,13 +1021,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141120Z:1bc6a5c0-200f-4a49-98a5-fc8dfeaf3c9e" + "CENTRALUS:20220419T143533Z:3d267117-8633-4e31-8576-65c0466e9555" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:19 GMT" + "Tue, 19 Apr 2022 14:35:32 GMT" ], "Content-Length": [ "8282" @@ -1039,23 +1039,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f089ddcb-3f01-426b-9007-7f7c93b8ca6c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"vm1233389\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/securityRules/vm1233389\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vm1235985\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/securityRules/vm1235985\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"5985\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"195145c8-38c6-4153-88b8-e7b02256c4d2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"29a7b1db-9893-407d-90c1-d3b644ee86b1\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"vm1233389\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/securityRules/vm1233389\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vm1235985\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/securityRules/vm1235985\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"5985\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"517b774f-9a7c-401e-8600-9e8f2ae2cb3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/664e27ce-7f56-42ad-a6c2-804e0dbef1c8?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjY0ZTI3Y2UtN2Y1Ni00MmFkLWE2YzItODA0ZTBkYmVmMWM4P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/67ef6885-0401-481a-95e2-5a54d661b7b0?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjdlZjY4ODUtMDQwMS00ODFhLTk1ZTItNWE1NGQ2NjFiN2IwP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ] }, "ResponseHeaders": { @@ -1066,13 +1066,13 @@ "no-cache" ], "x-ms-request-id": [ - "a052cdcd-792c-4fc6-891e-a5e27d3fded7" + "3c418330-dfa6-40b4-a932-f298ba34499b" ], "x-ms-correlation-request-id": [ - "5e6f9b3c-381a-4a7d-94e6-19abf2f7d5dc" + "36a8485a-9208-4a90-b435-5a6e7a46110d" ], "x-ms-arm-service-request-id": [ - "e46f43e1-edb8-4f05-a324-839b48f18832" + "cfd098ec-416e-4793-bd46-513070900140" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1085,13 +1085,13 @@ "11999" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141123Z:5e6f9b3c-381a-4a7d-94e6-19abf2f7d5dc" + "CENTRALUS:20220419T143536Z:36a8485a-9208-4a90-b435-5a6e7a46110d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:23 GMT" + "Tue, 19 Apr 2022 14:35:35 GMT" ], "Content-Length": [ "29" @@ -1107,19 +1107,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/ff8a5b8e-917b-4c6b-a352-9141791dedac?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmY4YTViOGUtOTE3Yi00YzZiLWEzNTItOTE0MTc5MWRlZGFjP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/8688dc5d-345e-42d4-b7aa-fd438d19b92c?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODY4OGRjNWQtMzQ1ZS00MmQ0LWI3YWEtZmQ0MzhkMTliOTJjP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ] }, "ResponseHeaders": { @@ -1130,13 +1130,13 @@ "no-cache" ], "x-ms-request-id": [ - "96949a19-6b81-44e3-b16d-ad7e3e6540f2" + "a3412605-c0fc-4c9b-a55e-8e2c50d5747b" ], "x-ms-correlation-request-id": [ - "a1937976-6e39-4ad7-8c7e-19111774fdd7" + "995d1fd0-4615-4e7c-abbd-bb4ad6365ba6" ], "x-ms-arm-service-request-id": [ - "9ac47f90-2f8f-4fd4-bd2d-65a4762b38a9" + "db78a74f-e8fc-40c7-a1d3-368edf068289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1149,13 +1149,13 @@ "11999" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141123Z:a1937976-6e39-4ad7-8c7e-19111774fdd7" + "CENTRALUS:20220419T143536Z:995d1fd0-4615-4e7c-abbd-bb4ad6365ba6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:23 GMT" + "Tue, 19 Apr 2022 14:35:35 GMT" ], "Content-Length": [ "29" @@ -1171,22 +1171,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123?api-version=2020-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtMTIzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL3ZtMTIzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\"\r\n }\r\n },\r\n \"name\": \"vm123\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\"\r\n }\r\n },\r\n \"name\": \"vm123\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.26.0" + "Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Network.NetworkManagementClient/4.25.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1203,19 +1203,19 @@ "no-cache" ], "x-ms-request-id": [ - "c5ed93a5-dfc0-4258-a6ba-0923e7604498" + "8d07ad34-f6de-434f-8f7e-0d91f2e57eb4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/c5ed93a5-dfc0-4258-a6ba-0923e7604498?api-version=2020-11-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus/operations/8d07ad34-f6de-434f-8f7e-0d91f2e57eb4?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "4b3521b1-938f-4177-b82d-52af551e5700" + "ce848c90-ffc5-429c-9903-69fcd1c97627" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "b7ed7bab-8ca8-4637-a879-ce687788eda4" + "0bf5aa14-1c9d-4578-a6ec-8f13a22a017e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1228,13 +1228,13 @@ "1199" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141126Z:4b3521b1-938f-4177-b82d-52af551e5700" + "CENTRALUS:20220419T143538Z:ce848c90-ffc5-429c-9903-69fcd1c97627" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:26 GMT" + "Tue, 19 Apr 2022 14:35:38 GMT" ], "Content-Length": [ "1836" @@ -1246,23 +1246,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123\",\r\n \"etag\": \"W/\\\"d0874482-05d2-4d22-8623-d8acb8a4385d\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28a9c272-f1b0-46d7-9789-451c80f296f4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123/ipConfigurations/vm123\",\r\n \"etag\": \"W/\\\"d0874482-05d2-4d22-8623-d8acb8a4385d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"2evgqfkotzzujbo4lb3l1oaxwc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkSecurityGroups/vm123\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123\",\r\n \"etag\": \"W/\\\"5b6baad2-5f41-4e16-a2dd-0a731679f723\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccea89cc-596e-448b-86dc-318c928bbf38\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123/ipConfigurations/vm123\",\r\n \"etag\": \"W/\\\"5b6baad2-5f41-4e16-a2dd-0a731679f723\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/virtualNetworks/vm123/subnets/vm123\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"m5nnpw055acu1fp2u0sbpdyo3b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkSecurityGroups/vm123\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"additionalCapabilities\": {},\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"temppass12345T\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"additionalCapabilities\": {},\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"temppass12345T\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1285,7 +1285,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/31d6a004-e7d0-4dbe-8ef6-8a63bcf79795?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1297,7 +1297,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a731d647-d004-466e-aa97-af28f4671669" + "31d6a004-e7d0-4dbe-8ef6-8a63bcf79795" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1307,19 +1307,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "f4f27a8d-9e0f-41d3-aca0-be117f14e660" + "7b3713af-e693-410b-8f18-0c092c9b91aa" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141129Z:f4f27a8d-9e0f-41d3-aca0-be117f14e660" + "CENTRALUS:20220419T143542Z:7b3713af-e693-410b-8f18-0c092c9b91aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:29 GMT" + "Tue, 19 Apr 2022 14:35:41 GMT" ], "Content-Length": [ - "1862" + "1814" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1328,20 +1328,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"98d2f491-c5cd-4a7d-b028-48e130f15545\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20371.220504\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Network/networkInterfaces/vm123\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-13T10:11:29.2980883-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4ed69e41-261f-4a48-a037-f10885faea40\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20337.220408\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Network/networkInterfaces/vm123\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-04-19T10:35:41.8478794-04:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/31d6a004-e7d0-4dbe-8ef6-8a63bcf79795?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzFkNmEwMDQtZTdkMC00ZGJlLThlZjYtOGE2M2JjZjc5Nzk1P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1355,7 +1355,7 @@ "no-cache" ], "Retry-After": [ - "4" + "50" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" @@ -1364,7 +1364,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3d63b6d-582e-4841-ad52-0aec9176597a" + "d0108aa0-3188-41a3-b165-d63d96ee6728" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1374,19 +1374,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "edcd7e96-b6c6-4a36-b564-9999caca552d" + "d9599311-d473-4e01-ba2b-222ebb5e673b" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141139Z:edcd7e96-b6c6-4a36-b564-9999caca552d" + "CENTRALUS:20220419T143552Z:d9599311-d473-4e01-ba2b-222ebb5e673b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:39 GMT" + "Tue, 19 Apr 2022 14:35:52 GMT" ], "Content-Length": [ - "134" + "131" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1395,20 +1395,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-19T10:35:41.0354-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"31d6a004-e7d0-4dbe-8ef6-8a63bcf79795\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/31d6a004-e7d0-4dbe-8ef6-8a63bcf79795?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzFkNmEwMDQtZTdkMC00ZGJlLThlZjYtOGE2M2JjZjc5Nzk1P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0f71bb40-4395-42d6-872b-6d560313a1a1" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1421,9 +1421,6 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" ], @@ -1431,7 +1428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5469a054-8fe2-4448-87b0-e20405816df0" + "f5439efa-da40-43a4-a8dc-a2081df75102" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1441,19 +1438,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "b5fcb085-5799-41f0-8751-665863f6ae62" + "e1c76b12-1d26-4fcc-8591-486098c0018a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141144Z:b5fcb085-5799-41f0-8751-665863f6ae62" + "CENTRALUS:20220419T143642Z:e1c76b12-1d26-4fcc-8591-486098c0018a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:44 GMT" + "Tue, 19 Apr 2022 14:36:41 GMT" ], "Content-Length": [ - "134" + "181" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1462,23 +1459,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-19T10:35:41.0354-04:00\",\r\n \"endTime\": \"2022-04-19T10:36:23.5666158-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"31d6a004-e7d0-4dbe-8ef6-8a63bcf79795\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "5e2f2310-10a3-42c5-94aa-269ef4741372" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "223" ] }, "ResponseHeaders": { @@ -1488,39 +1494,36 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + "Microsoft.Compute/CreateRestorePoints3Min;119,Microsoft.Compute/CreateRestorePoints30Min;599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f35f7a23-6d88-4ba8-9a5c-ed21ad35f8d3" + "de315992-5b30-40da-8c88-dc0c9aea428a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "dc68216a-af25-4e41-a523-7792f27da851" + "1d22f964-be19-4e48-9cad-38f86370c487" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141152Z:dc68216a-af25-4e41-a523-7792f27da851" + "CENTRALUS:20220419T143645Z:1d22f964-be19-4e48-9cad-38f86370c487" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:52 GMT" + "Tue, 19 Apr 2022 14:36:44 GMT" ], "Content-Length": [ - "134" + "593" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1529,20 +1532,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"rpc123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123\",\r\n \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n },\r\n \"restorePointCollectionId\": \"0686da00-a4cf-476a-b0fd-764c21e8c404\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123?$expand=restorePoints&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz8kZXhwYW5kPXJlc3RvcmVQb2ludHMmYXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "69c14709-73aa-4075-a19b-76ab3d7579d6" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1555,39 +1561,36 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" + "Microsoft.Compute/LowCostGetRestorePoint3Min;499,Microsoft.Compute/LowCostGetRestorePoint30Min;2499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a273821-95d9-4413-af62-2a365ce28ba7" + "e3e97708-149d-4a63-9e0a-bd7498932cae" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "73f1ffe6-1dd8-46b2-8a1e-047a87e0bb58" + "16ddcba3-0aae-4599-911c-29b43c6b777f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141156Z:73f1ffe6-1dd8-46b2-8a1e-047a87e0bb58" + "CENTRALUS:20220419T143645Z:16ddcba3-0aae-4599-911c-29b43c6b777f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:11:56 GMT" + "Tue, 19 Apr 2022 14:36:45 GMT" ], "Content-Length": [ - "134" + "619" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1596,23 +1599,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"rpc123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123\",\r\n \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n },\r\n \"restorePointCollectionId\": \"0686da00-a4cf-476a-b0fd-764c21e8c404\",\r\n \"restorePoints\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"test2\": \"testval2\",\r\n \"test1\": \"testval1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "9cda0eb1-9e88-4745-bd83-e8b24f59c086" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "73" ] }, "ResponseHeaders": { @@ -1622,39 +1634,36 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/CreateRestorePoints3Min;118,Microsoft.Compute/CreateRestorePoints30Min;598" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "653acb31-d5b1-4105-abf0-afcf301dc382" + "0017cd6d-95b8-4e4e-b5a5-8178de661c5d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "db97fed9-d1f3-4a4b-8948-714e2bc34b1b" + "31a3fe88-447e-4920-906b-ca004f00c3da" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141200Z:db97fed9-d1f3-4a4b-8948-714e2bc34b1b" + "CENTRALUS:20220419T143647Z:31a3fe88-447e-4920-906b-ca004f00c3da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:00 GMT" + "Tue, 19 Apr 2022 14:36:47 GMT" ], "Content-Length": [ - "134" + "663" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1663,20 +1672,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"rpc123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123\",\r\n \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test2\": \"testval2\",\r\n \"test1\": \"testval1\"\r\n },\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n },\r\n \"restorePointCollectionId\": \"0686da00-a4cf-476a-b0fd-764c21e8c404\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "9cda0eb1-9e88-4745-bd83-e8b24f59c086" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1689,39 +1701,36 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/LowCostGetRestorePoint3Min;498,Microsoft.Compute/LowCostGetRestorePoint30Min;2498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0294f9d-154a-4fb7-a51f-52f1ec2c45cb" + "ea2ede87-d9a1-4d84-a6ac-27536783225b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "8594d7c3-a5ee-45fc-8be3-47991f6ab656" + "b21b826f-7ac5-40f9-992b-ec2dbd035ed5" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141204Z:8594d7c3-a5ee-45fc-8be3-47991f6ab656" + "CENTRALUS:20220419T143647Z:b21b826f-7ac5-40f9-992b-ec2dbd035ed5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:04 GMT" + "Tue, 19 Apr 2022 14:36:47 GMT" ], "Content-Length": [ - "134" + "663" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1730,23 +1739,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"rpc123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123\",\r\n \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test2\": \"testval2\",\r\n \"test1\": \"testval1\"\r\n },\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n },\r\n \"restorePointCollectionId\": \"0686da00-a4cf-476a-b0fd-764c21e8c404\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMy9yZXN0b3JlUG9pbnRzL3JwMTIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0b687693-c6e7-420d-b74d-c28fc03847f7" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" ] }, "ResponseHeaders": { @@ -1756,39 +1774,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/611fb914-1f04-447c-8022-4b89908f8097?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/CreateRestorePoints3Min;117,Microsoft.Compute/CreateRestorePoints30Min;597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b443bc65-696d-4b0d-8e80-c8bb299c76a8" + "611fb914-1f04-447c-8022-4b89908f8097" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "b7b36da3-ee3d-451a-ba50-a08acf4a0b66" + "13c4d93f-55e7-4949-92e4-4e39d43430cc" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141208Z:b7b36da3-ee3d-451a-ba50-a08acf4a0b66" + "CENTRALUS:20220419T143648Z:13c4d93f-55e7-4949-92e4-4e39d43430cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:08 GMT" + "Tue, 19 Apr 2022 14:36:48 GMT" ], "Content-Length": [ - "134" + "1547" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1797,20 +1815,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"rp123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123\",\r\n \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"4ed69e41-261f-4a48-a037-f10885faea40\",\r\n \"location\": \"eastus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\",\r\n \"diskSizeGB\": 127,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/disks/vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-04-19T10:36:48.7688208-04:00\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/611fb914-1f04-447c-8022-4b89908f8097?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjExZmI5MTQtMWYwNC00NDdjLTgwMjItNGI4OTkwOGY4MDk3P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0b687693-c6e7-420d-b74d-c28fc03847f7" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1823,36 +1841,33 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f042f383-1957-48a3-85b5-b010a982b28d" + "cca906b2-7883-4c5f-bd46-e4db003bf14c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "3adc2dd7-7556-4b37-867b-cd58196e3a79" + "41e301b6-9416-4d5d-97ae-96f93e3314d0" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141212Z:3adc2dd7-7556-4b37-867b-cd58196e3a79" + "CENTRALUS:20220419T143719Z:41e301b6-9416-4d5d-97ae-96f93e3314d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:12 GMT" + "Tue, 19 Apr 2022 14:37:18 GMT" ], "Content-Length": [ "134" @@ -1864,20 +1879,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-19T10:36:48.7688208-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"611fb914-1f04-447c-8022-4b89908f8097\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/611fb914-1f04-447c-8022-4b89908f8097?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjExZmI5MTQtMWYwNC00NDdjLTgwMjItNGI4OTkwOGY4MDk3P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0b687693-c6e7-420d-b74d-c28fc03847f7" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1890,36 +1905,33 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "278351fe-a1e3-4cf0-ad18-3eba6ed41f62" + "1de79c55-65a1-4165-a67f-8ce37ab6bca2" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "0dc13df8-b1e2-40b7-bafc-baba0a680c77" + "c8ed3e96-eb05-4f25-9fa9-ca74d4a1ed0a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141217Z:0dc13df8-b1e2-40b7-bafc-baba0a680c77" + "CENTRALUS:20220419T143749Z:c8ed3e96-eb05-4f25-9fa9-ca74d4a1ed0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:16 GMT" + "Tue, 19 Apr 2022 14:37:48 GMT" ], "Content-Length": [ "134" @@ -1931,20 +1943,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-19T10:36:48.7688208-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"611fb914-1f04-447c-8022-4b89908f8097\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/611fb914-1f04-447c-8022-4b89908f8097?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjExZmI5MTQtMWYwNC00NDdjLTgwMjItNGI4OTkwOGY4MDk3P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0b687693-c6e7-420d-b74d-c28fc03847f7" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -1957,36 +1969,33 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a530dd7-a116-44b0-9771-db2613880c2b" + "a7d08274-a063-464f-ad4c-150f92ee332c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-correlation-request-id": [ - "79c97e79-7fa4-4b9e-98e1-fb02789efcf6" + "17a3aea5-096c-4cb2-819e-a0114588f581" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141221Z:79c97e79-7fa4-4b9e-98e1-fb02789efcf6" + "CENTRALUS:20220419T143819Z:17a3aea5-096c-4cb2-819e-a0114588f581" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:20 GMT" + "Tue, 19 Apr 2022 14:38:19 GMT" ], "Content-Length": [ "134" @@ -1998,20 +2007,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-19T10:36:48.7688208-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"611fb914-1f04-447c-8022-4b89908f8097\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/611fb914-1f04-447c-8022-4b89908f8097?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNjExZmI5MTQtMWYwNC00NDdjLTgwMjItNGI4OTkwOGY4MDk3P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0b687693-c6e7-420d-b74d-c28fc03847f7" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2024,39 +2033,36 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989" + "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d782db53-2efe-4668-9de4-cbf3a20c75ac" + "d17499a1-556b-4af0-9015-71992041d9ed" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-correlation-request-id": [ - "20cc23e2-6b34-4b11-9894-ed62b7601c30" + "2f816ef0-25d0-4ac7-b307-84d0d16660ad" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141225Z:20cc23e2-6b34-4b11-9894-ed62b7601c30" + "CENTRALUS:20220419T143849Z:2f816ef0-25d0-4ac7-b307-84d0d16660ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:25 GMT" + "Tue, 19 Apr 2022 14:38:48 GMT" ], "Content-Length": [ - "134" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2065,20 +2071,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-19T10:36:48.7688208-04:00\",\r\n \"endTime\": \"2022-04-19T10:38:34.8478776-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"611fb914-1f04-447c-8022-4b89908f8097\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMy9yZXN0b3JlUG9pbnRzL3JwMTIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "0b687693-c6e7-420d-b74d-c28fc03847f7" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2091,39 +2097,36 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "4" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/LowCostGetRestorePoint3Min;497,Microsoft.Compute/LowCostGetRestorePoint30Min;2497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1fcd1df7-51e3-43d2-8b4b-d4c4c089b3cf" + "37250a6a-6579-4303-9e55-ee4fcd87ab8d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-correlation-request-id": [ - "88cc782a-2035-47e6-b9b8-cc065aebec02" + "61b49016-d545-443e-a17d-1727f6bfbf84" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141229Z:88cc782a-2035-47e6-b9b8-cc065aebec02" + "CENTRALUS:20220419T143849Z:61b49016-d545-443e-a17d-1727f6bfbf84" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:29 GMT" + "Tue, 19 Apr 2022 14:38:48 GMT" ], "Content-Length": [ - "134" + "1928" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2132,20 +2135,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"rp123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123\",\r\n \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"4ed69e41-261f-4a48-a037-f10885faea40\",\r\n \"location\": \"eastus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\",\r\n \"diskSizeGB\": 127,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/disks/vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\"\r\n },\r\n \"diskRestorePoint\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123/diskRestorePoints/vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f_5f2e75e5-7926-4238-a671-9567f747705b\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": \"ApplicationConsistent\",\r\n \"timeCreated\": \"2022-04-19T10:36:48.7688208-04:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/a731d647-d004-466e-aa97-af28f4671669?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTczMWQ2NDctZDAwNC00NjZlLWFhOTctYWYyOGY0NjcxNjY5P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMy9yZXN0b3JlUG9pbnRzL3JwMTIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb8b10b-28b6-4089-9e2e-d3a91ea13546" + "759a1239-ab85-47c6-b28e-b9bc8ff29fd8" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2159,35 +2165,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987" + "Microsoft.Compute/LowCostGetRestorePoint3Min;496,Microsoft.Compute/LowCostGetRestorePoint30Min;2496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "098386da-dace-477f-b327-8ff0c12232de" + "f48c05bb-7058-41c1-99c9-b9f4da3bf787" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "16df101a-7d52-4391-814f-035699624e2f" + "bf9d4a2f-6b97-487b-b151-565f6bac3e7f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141233Z:16df101a-7d52-4391-814f-035699624e2f" + "CENTRALUS:20220419T143849Z:bf9d4a2f-6b97-487b-b151-565f6bac3e7f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:33 GMT" + "Tue, 19 Apr 2022 14:38:48 GMT" ], "Content-Length": [ - "184" + "1928" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2196,32 +2202,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:11:28.7355843-04:00\",\r\n \"endTime\": \"2022-05-13T10:12:31.9860074-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a731d647-d004-466e-aa97-af28f4671669\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"rp123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123\",\r\n \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"4ed69e41-261f-4a48-a037-f10885faea40\",\r\n \"location\": \"eastus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\",\r\n \"diskSizeGB\": 127,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/disks/vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f\"\r\n },\r\n \"diskRestorePoint\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123/diskRestorePoints/vm123_OsDisk_1_8f53484fb6964469abfac81d75a6ac4f_5f2e75e5-7926-4238-a671-9567f747705b\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": \"ApplicationConsistent\",\r\n \"timeCreated\": \"2022-04-19T10:36:48.7688208-04:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMy9yZXN0b3JlUG9pbnRzL3JwMTIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b967225f-b92d-4635-8103-3c1fe6ab6ce1" + "364459a6-54ff-4d3f-83ff-eb987a293011" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "223" ] }, "ResponseHeaders": { @@ -2231,61 +2231,61 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/83245899-729c-49a8-9a99-b47b7ef9998e?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2021-11-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/83245899-729c-49a8-9a99-b47b7ef9998e?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateRestorePoints3Min;119,Microsoft.Compute/CreateRestorePoints30Min;599" + "Microsoft.Compute/DeleteRestorePoints3Min;349,Microsoft.Compute/DeleteRestorePoints30Min;999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36d34c2d-e6bc-4018-80ce-70a07912bb00" + "83245899-729c-49a8-9a99-b47b7ef9998e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "4ce6d56b-003c-4e09-80ff-25a0fef1c819" + "8a981edd-ab5c-4c27-9641-4e7d9ea10c78" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141236Z:4ce6d56b-003c-4e09-80ff-25a0fef1c819" + "CENTRALUS:20220419T143850Z:8a981edd-ab5c-4c27-9641-4e7d9ea10c78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:35 GMT" - ], - "Content-Length": [ - "593" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Tue, 19 Apr 2022 14:38:49 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"rpc123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123\",\r\n \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n },\r\n \"restorePointCollectionId\": \"32f48b2e-1672-4c0a-bfea-5eec6919e623\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123?$expand=restorePoints&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz8kZXhwYW5kPXJlc3RvcmVQb2ludHMmYXBpLXZlcnNpb249MjAyMS0xMS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/83245899-729c-49a8-9a99-b47b7ef9998e?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODMyNDU4OTktNzI5Yy00OWE4LTlhOTktYjQ3YjdlZjk5OThlP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d3f5cb5-3473-43dd-9ba9-7aafe57db707" - ], - "Accept-Language": [ - "en-US" + "364459a6-54ff-4d3f-83ff-eb987a293011" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2299,13 +2299,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGetRestorePoint3Min;499,Microsoft.Compute/LowCostGetRestorePoint30Min;2499" + "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df5f3b41-cb98-40b8-b98b-598efad9a302" + "8ff9749a-31e0-49c2-8baa-114992d8a3c8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2315,19 +2315,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "67659859-61cb-4378-ad14-c67da3a78c83" + "2ee73f2e-0716-4964-b3ba-1ea28c7305fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141237Z:67659859-61cb-4378-ad14-c67da3a78c83" + "CENTRALUS:20220419T143920Z:2ee73f2e-0716-4964-b3ba-1ea28c7305fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:36 GMT" + "Tue, 19 Apr 2022 14:39:20 GMT" ], "Content-Length": [ - "619" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2336,32 +2336,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"rpc123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123\",\r\n \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n },\r\n \"restorePointCollectionId\": \"32f48b2e-1672-4c0a-bfea-5eec6919e623\",\r\n \"restorePoints\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-19T10:38:50.7698082-04:00\",\r\n \"endTime\": \"2022-04-19T10:39:00.9104833-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"83245899-729c-49a8-9a99-b47b7ef9998e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"test2\": \"testval2\",\r\n \"test1\": \"testval1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/83245899-729c-49a8-9a99-b47b7ef9998e?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODMyNDU4OTktNzI5Yy00OWE4LTlhOTktYjQ3YjdlZjk5OThlP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5Jm1vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e6abb35-035f-4efe-9be4-694f90b391e4" - ], - "Accept-Language": [ - "en-US" + "364459a6-54ff-4d3f-83ff-eb987a293011" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "73" ] }, "ResponseHeaders": { @@ -2372,60 +2363,57 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateRestorePoints3Min;118,Microsoft.Compute/CreateRestorePoints30Min;598" + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8458892d-2f24-4730-9919-798185b7929a" + "1dc05792-b022-4af9-8104-385ee7f9c262" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "de4a56fb-50b0-478b-aa46-3bd6a4c6fef0" + "4787d510-0583-4b77-8b1d-86da5e0ca2d4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141239Z:de4a56fb-50b0-478b-aa46-3bd6a4c6fef0" + "CENTRALUS:20220419T143921Z:4787d510-0583-4b77-8b1d-86da5e0ca2d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:38 GMT" - ], - "Content-Length": [ - "663" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Tue, 19 Apr 2022 14:39:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"rpc123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123\",\r\n \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test2\": \"testval2\",\r\n \"test1\": \"testval1\"\r\n },\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n },\r\n \"restorePointCollectionId\": \"32f48b2e-1672-4c0a-bfea-5eec6919e623\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps6388/providers/Microsoft.Compute/restorePointCollections/rpc123?api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczYzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e6abb35-035f-4efe-9be4-694f90b391e4" + "6f7e6386-cb77-402a-bb1a-f19aed019120" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -2438,70 +2426,67 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/1be3306f-2277-479e-962d-55e93f65530d?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2021-11-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/1be3306f-2277-479e-962d-55e93f65530d?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGetRestorePoint3Min;498,Microsoft.Compute/LowCostGetRestorePoint30Min;2498" + "Microsoft.Compute/DeleteRestorePoints3Min;348,Microsoft.Compute/DeleteRestorePoints30Min;998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b80e062-9a40-4a41-b4d0-7190e69b2da1" + "1be3306f-2277-479e-962d-55e93f65530d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "3aa7bdac-381e-470a-8a6d-b7c0255b18bd" + "28db93fa-9e87-4922-96da-000add3b086b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141239Z:3aa7bdac-381e-470a-8a6d-b7c0255b18bd" + "CENTRALUS:20220419T143922Z:28db93fa-9e87-4922-96da-000add3b086b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:39 GMT" - ], - "Content-Length": [ - "663" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Tue, 19 Apr 2022 14:39:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"name\": \"rpc123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123\",\r\n \"type\": \"Microsoft.Compute/restorePointCollections\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"test2\": \"testval2\",\r\n \"test1\": \"testval1\"\r\n },\r\n \"properties\": {\r\n \"source\": {\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/virtualMachines/vm123\"\r\n },\r\n \"restorePointCollectionId\": \"32f48b2e-1672-4c0a-bfea-5eec6919e623\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMy9yZXN0b3JlUG9pbnRzL3JwMTIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{}", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/1be3306f-2277-479e-962d-55e93f65530d?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWJlMzMwNmYtMjI3Ny00NzllLTk2MmQtNTVlOTNmNjU1MzBkP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60ecb17d-1fff-41f1-a355-dfee1e0d8907" - ], - "Accept-Language": [ - "en-US" + "6f7e6386-cb77-402a-bb1a-f19aed019120" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2" ] }, "ResponseHeaders": { @@ -2511,557 +2496,33 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/90cfa4d4-4033-49f7-a4a8-50d6a43e12ac?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateRestorePoints3Min;117,Microsoft.Compute/CreateRestorePoints30Min;597" + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90cfa4d4-4033-49f7-a4a8-50d6a43e12ac" + "19e2f825-4250-4d47-925f-88ae8ee33a40" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "ef9c8a0b-2b58-495e-b589-8ece3ad89c08" + "acd2295f-56dc-4b5a-af1c-76c4c6485cb2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141241Z:ef9c8a0b-2b58-495e-b589-8ece3ad89c08" + "CENTRALUS:20220419T143952Z:acd2295f-56dc-4b5a-af1c-76c4c6485cb2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:12:40 GMT" - ], - "Content-Length": [ - "1590" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"rp123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123\",\r\n \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"98d2f491-c5cd-4a7d-b028-48e130f15545\",\r\n \"location\": \"eastus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\",\r\n \"diskSizeGB\": 127,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/disks/vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-05-13T10:12:40.939237-04:00\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/90cfa4d4-4033-49f7-a4a8-50d6a43e12ac?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTBjZmE0ZDQtNDAzMy00OWY3LWE0YTgtNTBkNmE0M2UxMmFjP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ecb17d-1fff-41f1-a355-dfee1e0d8907" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "09c6557f-9009-4b1d-8797-b1c4549f73e2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "1fb015a4-faaa-4017-b45c-0388eb5dc95c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141311Z:1fb015a4-faaa-4017-b45c-0388eb5dc95c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:13:11 GMT" - ], - "Content-Length": [ - "133" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:12:40.939237-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"90cfa4d4-4033-49f7-a4a8-50d6a43e12ac\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/90cfa4d4-4033-49f7-a4a8-50d6a43e12ac?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTBjZmE0ZDQtNDAzMy00OWY3LWE0YTgtNTBkNmE0M2UxMmFjP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ecb17d-1fff-41f1-a355-dfee1e0d8907" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "25b1268d-4d7a-4884-b7c4-1f8f229477a5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "ffaeae08-a586-4f4c-a76e-4218668cdf2b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141341Z:ffaeae08-a586-4f4c-a76e-4218668cdf2b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:13:41 GMT" - ], - "Content-Length": [ - "133" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:12:40.939237-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"90cfa4d4-4033-49f7-a4a8-50d6a43e12ac\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/90cfa4d4-4033-49f7-a4a8-50d6a43e12ac?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTBjZmE0ZDQtNDAzMy00OWY3LWE0YTgtNTBkNmE0M2UxMmFjP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ecb17d-1fff-41f1-a355-dfee1e0d8907" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "59d86787-ede7-46ba-9942-903aa8f3a2f0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "3df4e979-c2b4-4204-92e0-19ab88383f6a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141411Z:3df4e979-c2b4-4204-92e0-19ab88383f6a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:14:10 GMT" - ], - "Content-Length": [ - "133" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:12:40.939237-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"90cfa4d4-4033-49f7-a4a8-50d6a43e12ac\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/90cfa4d4-4033-49f7-a4a8-50d6a43e12ac?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTBjZmE0ZDQtNDAzMy00OWY3LWE0YTgtNTBkNmE0M2UxMmFjP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ecb17d-1fff-41f1-a355-dfee1e0d8907" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29975" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "2bc5a139-e6ed-425a-8b84-f4b5ef9890f2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "4ff5e943-ffc9-4d59-8c0a-11ae209dedab" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141441Z:4ff5e943-ffc9-4d59-8c0a-11ae209dedab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:14:40 GMT" - ], - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:12:40.939237-04:00\",\r\n \"endTime\": \"2022-05-13T10:14:37.7839885-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"90cfa4d4-4033-49f7-a4a8-50d6a43e12ac\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMy9yZXN0b3JlUG9pbnRzL3JwMTIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ecb17d-1fff-41f1-a355-dfee1e0d8907" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGetRestorePoint3Min;497,Microsoft.Compute/LowCostGetRestorePoint30Min;2497" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "90767d24-a222-4841-bb20-ec0c082d6850" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "3cea5a49-fd9b-4557-84e5-9532e5785427" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141441Z:3cea5a49-fd9b-4557-84e5-9532e5785427" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:14:40 GMT" - ], - "Content-Length": [ - "1968" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"rp123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123\",\r\n \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"98d2f491-c5cd-4a7d-b028-48e130f15545\",\r\n \"location\": \"eastus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\",\r\n \"diskSizeGB\": 127,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/disks/vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\"\r\n },\r\n \"diskRestorePoint\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123/diskRestorePoints/vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52_52eaa240-d4f6-49f3-a429-1a0856dcf740\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": \"ApplicationConsistent\",\r\n \"timeCreated\": \"2022-05-13T10:12:40.939237-04:00\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMy9yZXN0b3JlUG9pbnRzL3JwMTIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fc55e6df-b445-4fb6-be89-6f5bcd903f25" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGetRestorePoint3Min;496,Microsoft.Compute/LowCostGetRestorePoint30Min;2496" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "31cc82b1-20b1-4748-98d7-da32ef009df2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "925aaa58-f458-4058-9471-8eac7aae70ee" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141445Z:925aaa58-f458-4058-9471-8eac7aae70ee" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:14:44 GMT" - ], - "Content-Length": [ - "1968" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"rp123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123\",\r\n \"properties\": {\r\n \"sourceMetadata\": {\r\n \"vmId\": \"98d2f491-c5cd-4a7d-b028-48e130f15545\",\r\n \"location\": \"eastus\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\",\r\n \"diskSizeGB\": 127,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/disks/vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52\"\r\n },\r\n \"diskRestorePoint\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123/diskRestorePoints/vm123_disk1_2ccc80ff6b6a485bbe8e080c45d7fc52_52eaa240-d4f6-49f3-a429-1a0856dcf740\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm123\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"consistencyMode\": \"ApplicationConsistent\",\r\n \"timeCreated\": \"2022-05-13T10:12:40.939237-04:00\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123/restorePoints/rp123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMy9yZXN0b3JlUG9pbnRzL3JwMTIzP2FwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ee1ffe0-b3a0-4da0-b6d2-cc140cea878d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0bc5ff48-64de-4416-888d-bc9e51f1f545?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2021-11-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0bc5ff48-64de-4416-888d-bc9e51f1f545?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteRestorePoints3Min;349,Microsoft.Compute/DeleteRestorePoints30Min;999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0bc5ff48-64de-4416-888d-bc9e51f1f545" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "0e9f527a-ee8c-4c5d-94e7-3a36d178247a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141446Z:0e9f527a-ee8c-4c5d-94e7-3a36d178247a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:14:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0bc5ff48-64de-4416-888d-bc9e51f1f545?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGJjNWZmNDgtNjRkZS00NDE2LTg4OGQtYmM5ZTUxZjFmNTQ1P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ee1ffe0-b3a0-4da0-b6d2-cc140cea878d" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29972" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a2a72a72-abd9-4dbb-8a82-e05feaa3184d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "ca63b9be-9de1-43b9-a127-c0934953a1e7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141516Z:ca63b9be-9de1-43b9-a127-c0934953a1e7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:15:16 GMT" + "Tue, 19 Apr 2022 14:39:52 GMT" ], "Content-Length": [ "184" @@ -3073,218 +2534,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:14:46.3777613-04:00\",\r\n \"endTime\": \"2022-05-13T10:14:56.4872102-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0bc5ff48-64de-4416-888d-bc9e51f1f545\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/0bc5ff48-64de-4416-888d-bc9e51f1f545?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGJjNWZmNDgtNjRkZS00NDE2LTg4OGQtYmM5ZTUxZjFmNTQ1P3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5Jm1vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ee1ffe0-b3a0-4da0-b6d2-cc140cea878d" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29971" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "5b9da72a-990a-4a08-911e-37accce1a9f6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "d8658e3f-627a-40ce-8125-cc06d009acdc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141516Z:d8658e3f-627a-40ce-8125-cc06d009acdc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:15:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7634/providers/Microsoft.Compute/restorePointCollections/rpc123?api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rwczc2MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3Jlc3RvcmVQb2ludENvbGxlY3Rpb25zL3JwYzEyMz9hcGktdmVyc2lvbj0yMDIxLTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7800e3fb-49d2-4a8e-aa38-8e2b305ecf12" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/9b00e66e-bcf9-4502-b7d2-3883a84002af?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2021-11-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/9b00e66e-bcf9-4502-b7d2-3883a84002af?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteRestorePoints3Min;348,Microsoft.Compute/DeleteRestorePoints30Min;998" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "9b00e66e-bcf9-4502-b7d2-3883a84002af" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "aa38479f-258a-4ac6-a6ab-70150ae654b9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141517Z:aa38479f-258a-4ac6-a6ab-70150ae654b9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:15:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/9b00e66e-bcf9-4502-b7d2-3883a84002af?p=4bed644a-a596-4634-b1fa-8009f92f8b59&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWIwMGU2NmUtYmNmOS00NTAyLWI3ZDItMzg4M2E4NDAwMmFmP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5JmFwaS12ZXJzaW9uPTIwMjEtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7800e3fb-49d2-4a8e-aa38-8e2b305ecf12" - ], - "User-Agent": [ - "FxVersion/4.700.22.21202", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29970" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "313fc2e3-72bc-466c-883e-df2154f98671" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "50ac9dd6-d19b-4af5-97e9-2e0c47625454" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141548Z:50ac9dd6-d19b-4af5-97e9-2e0c47625454" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 13 May 2022 14:15:47 GMT" - ], - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-05-13T10:15:17.8154968-04:00\",\r\n \"endTime\": \"2022-05-13T10:15:17.862347-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9b00e66e-bcf9-4502-b7d2-3883a84002af\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-19T10:39:22.2699724-04:00\",\r\n \"endTime\": \"2022-04-19T10:39:22.3011937-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1be3306f-2277-479e-962d-55e93f65530d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/9b00e66e-bcf9-4502-b7d2-3883a84002af?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2021-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWIwMGU2NmUtYmNmOS00NTAyLWI3ZDItMzg4M2E4NDAwMmFmP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5Jm1vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTExLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/operations/1be3306f-2277-479e-962d-55e93f65530d?p=4bed644a-a596-4634-b1fa-8009f92f8b59&monitor=true&api-version=2021-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWJlMzMwNmYtMjI3Ny00NzllLTk2MmQtNTVlOTNmNjU1MzBkP3A9NGJlZDY0NGEtYTU5Ni00NjM0LWIxZmEtODAwOWY5MmY4YjU5Jm1vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7800e3fb-49d2-4a8e-aa38-8e2b305ecf12" + "6f7e6386-cb77-402a-bb1a-f19aed019120" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" @@ -3298,13 +2561,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29969" + "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01462690-67a6-480b-8f53-d5fb8882dce3" + "99e5ef63-43d6-4ef2-9b28-4f5ee6c44749" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3314,16 +2577,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "d72c0dc3-2e3a-4d2d-a89f-d2a2f5a7774a" + "fd8b1c8c-b539-41d9-97f3-f6ef9705c5ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220513T141548Z:d72c0dc3-2e3a-4d2d-a89f-d2a2f5a7774a" + "CENTRALUS:20220419T143952Z:fd8b1c8c-b539-41d9-97f3-f6ef9705c5ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:15:47 GMT" + "Tue, 19 Apr 2022 14:39:52 GMT" ], "Expires": [ "-1" @@ -3336,19 +2599,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7634?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rwczc2MzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps6388?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczYzODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d03fade-b99f-4724-9502-3ad272c6f2db" + "dcc97db4-8876-4343-88cc-fb3830ee5e0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3362,7 +2625,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3371,13 +2634,13 @@ "14999" ], "x-ms-request-id": [ - "4fcd09dd-8bbc-4a31-ae88-303fadb18f26" + "539c7e8c-c7dc-48ee-b8ac-46ea5bc206b4" ], "x-ms-correlation-request-id": [ - "4fcd09dd-8bbc-4a31-ae88-303fadb18f26" + "539c7e8c-c7dc-48ee-b8ac-46ea5bc206b4" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141549Z:4fcd09dd-8bbc-4a31-ae88-303fadb18f26" + "CENTRALUS:20220419T143954Z:539c7e8c-c7dc-48ee-b8ac-46ea5bc206b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3386,7 +2649,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:15:49 GMT" + "Tue, 19 Apr 2022 14:39:54 GMT" ], "Expires": [ "-1" @@ -3399,13 +2662,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3419,7 +2682,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3428,13 +2691,13 @@ "11999" ], "x-ms-request-id": [ - "f488e857-43aa-4810-af60-e388f56860f3" + "bf0756cd-dabd-4fc8-93c3-40a9223b3913" ], "x-ms-correlation-request-id": [ - "f488e857-43aa-4810-af60-e388f56860f3" + "bf0756cd-dabd-4fc8-93c3-40a9223b3913" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141604Z:f488e857-43aa-4810-af60-e388f56860f3" + "CENTRALUS:20220419T144009Z:bf0756cd-dabd-4fc8-93c3-40a9223b3913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3443,7 +2706,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:16:04 GMT" + "Tue, 19 Apr 2022 14:40:08 GMT" ], "Expires": [ "-1" @@ -3456,13 +2719,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3476,7 +2739,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3485,13 +2748,13 @@ "11998" ], "x-ms-request-id": [ - "99e69c76-a27c-4f6e-bf8d-193d13f10957" + "a5217584-cc8c-4db4-bb45-695a55138897" ], "x-ms-correlation-request-id": [ - "99e69c76-a27c-4f6e-bf8d-193d13f10957" + "a5217584-cc8c-4db4-bb45-695a55138897" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141620Z:99e69c76-a27c-4f6e-bf8d-193d13f10957" + "CENTRALUS:20220419T144024Z:a5217584-cc8c-4db4-bb45-695a55138897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3500,7 +2763,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:16:19 GMT" + "Tue, 19 Apr 2022 14:40:23 GMT" ], "Expires": [ "-1" @@ -3513,13 +2776,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3533,7 +2796,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3542,13 +2805,13 @@ "11997" ], "x-ms-request-id": [ - "3b2b927c-a330-4df2-80f9-1a1d2b7f9c60" + "f5569e05-ffe7-479c-9dab-8c36bcb1d13a" ], "x-ms-correlation-request-id": [ - "3b2b927c-a330-4df2-80f9-1a1d2b7f9c60" + "f5569e05-ffe7-479c-9dab-8c36bcb1d13a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141635Z:3b2b927c-a330-4df2-80f9-1a1d2b7f9c60" + "CENTRALUS:20220419T144039Z:f5569e05-ffe7-479c-9dab-8c36bcb1d13a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3557,7 +2820,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:16:34 GMT" + "Tue, 19 Apr 2022 14:40:38 GMT" ], "Expires": [ "-1" @@ -3570,13 +2833,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3590,7 +2853,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3599,13 +2862,13 @@ "11996" ], "x-ms-request-id": [ - "31365b7f-e679-459e-bf77-a28f05f6ab6f" + "e784910a-9872-494c-b123-107af2bc30cc" ], "x-ms-correlation-request-id": [ - "31365b7f-e679-459e-bf77-a28f05f6ab6f" + "e784910a-9872-494c-b123-107af2bc30cc" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141650Z:31365b7f-e679-459e-bf77-a28f05f6ab6f" + "CENTRALUS:20220419T144054Z:e784910a-9872-494c-b123-107af2bc30cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3614,7 +2877,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:16:50 GMT" + "Tue, 19 Apr 2022 14:40:53 GMT" ], "Expires": [ "-1" @@ -3627,13 +2890,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3647,7 +2910,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3656,13 +2919,13 @@ "11995" ], "x-ms-request-id": [ - "8a8fb663-e2d1-45ac-880c-149e4240eb21" + "33fc17c6-c331-4ae9-a2a0-f7f1c9ffb229" ], "x-ms-correlation-request-id": [ - "8a8fb663-e2d1-45ac-880c-149e4240eb21" + "33fc17c6-c331-4ae9-a2a0-f7f1c9ffb229" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141705Z:8a8fb663-e2d1-45ac-880c-149e4240eb21" + "CENTRALUS:20220419T144109Z:33fc17c6-c331-4ae9-a2a0-f7f1c9ffb229" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3671,7 +2934,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:17:05 GMT" + "Tue, 19 Apr 2022 14:41:08 GMT" ], "Expires": [ "-1" @@ -3684,13 +2947,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3704,7 +2967,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3713,13 +2976,13 @@ "11994" ], "x-ms-request-id": [ - "56854520-2f3c-415d-a304-cc4f7da5ee22" + "b661254f-13c2-48cc-bb66-26953a7da918" ], "x-ms-correlation-request-id": [ - "56854520-2f3c-415d-a304-cc4f7da5ee22" + "b661254f-13c2-48cc-bb66-26953a7da918" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141720Z:56854520-2f3c-415d-a304-cc4f7da5ee22" + "CENTRALUS:20220419T144124Z:b661254f-13c2-48cc-bb66-26953a7da918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3728,7 +2991,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:17:20 GMT" + "Tue, 19 Apr 2022 14:41:24 GMT" ], "Expires": [ "-1" @@ -3741,13 +3004,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3761,7 +3024,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3770,13 +3033,13 @@ "11993" ], "x-ms-request-id": [ - "37614b0c-00f0-421a-a6b6-5c0c433d92e5" + "ca69ff08-a07b-4023-82b5-65fe401be76b" ], "x-ms-correlation-request-id": [ - "37614b0c-00f0-421a-a6b6-5c0c433d92e5" + "ca69ff08-a07b-4023-82b5-65fe401be76b" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141735Z:37614b0c-00f0-421a-a6b6-5c0c433d92e5" + "CENTRALUS:20220419T144139Z:ca69ff08-a07b-4023-82b5-65fe401be76b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3785,7 +3048,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:17:35 GMT" + "Tue, 19 Apr 2022 14:41:39 GMT" ], "Expires": [ "-1" @@ -3798,13 +3061,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3818,7 +3081,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3827,13 +3090,13 @@ "11992" ], "x-ms-request-id": [ - "9852231f-fe26-4434-aa82-358d37cd3d6e" + "c188886b-b8b5-4776-b522-d31af803830c" ], "x-ms-correlation-request-id": [ - "9852231f-fe26-4434-aa82-358d37cd3d6e" + "c188886b-b8b5-4776-b522-d31af803830c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141750Z:9852231f-fe26-4434-aa82-358d37cd3d6e" + "CENTRALUS:20220419T144155Z:c188886b-b8b5-4776-b522-d31af803830c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3842,7 +3105,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:17:50 GMT" + "Tue, 19 Apr 2022 14:41:54 GMT" ], "Expires": [ "-1" @@ -3855,13 +3118,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3875,7 +3138,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3884,13 +3147,13 @@ "11991" ], "x-ms-request-id": [ - "8a88708b-2f4c-437e-b9bc-d43fe5e050c9" + "e93e6856-edaf-42c4-8422-349177d0c630" ], "x-ms-correlation-request-id": [ - "8a88708b-2f4c-437e-b9bc-d43fe5e050c9" + "e93e6856-edaf-42c4-8422-349177d0c630" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141805Z:8a88708b-2f4c-437e-b9bc-d43fe5e050c9" + "CENTRALUS:20220419T144210Z:e93e6856-edaf-42c4-8422-349177d0c630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3899,7 +3162,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:18:05 GMT" + "Tue, 19 Apr 2022 14:42:09 GMT" ], "Expires": [ "-1" @@ -3912,13 +3175,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3932,7 +3195,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3941,13 +3204,13 @@ "11990" ], "x-ms-request-id": [ - "0ec7216e-4472-4737-9cf7-0f8d09b7b762" + "e1d9c3ba-9d6e-4518-aca1-59d1c2c0d167" ], "x-ms-correlation-request-id": [ - "0ec7216e-4472-4737-9cf7-0f8d09b7b762" + "e1d9c3ba-9d6e-4518-aca1-59d1c2c0d167" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141821Z:0ec7216e-4472-4737-9cf7-0f8d09b7b762" + "CENTRALUS:20220419T144225Z:e1d9c3ba-9d6e-4518-aca1-59d1c2c0d167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3956,7 +3219,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:18:20 GMT" + "Tue, 19 Apr 2022 14:42:25 GMT" ], "Expires": [ "-1" @@ -3969,13 +3232,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -3989,7 +3252,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3998,13 +3261,13 @@ "11989" ], "x-ms-request-id": [ - "145d8edd-0c8c-402a-924e-830016c7905d" + "d0909a3f-64dd-4031-a48b-44c2f7d2982e" ], "x-ms-correlation-request-id": [ - "145d8edd-0c8c-402a-924e-830016c7905d" + "d0909a3f-64dd-4031-a48b-44c2f7d2982e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141836Z:145d8edd-0c8c-402a-924e-830016c7905d" + "CENTRALUS:20220419T144240Z:d0909a3f-64dd-4031-a48b-44c2f7d2982e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4013,7 +3276,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:18:35 GMT" + "Tue, 19 Apr 2022 14:42:39 GMT" ], "Expires": [ "-1" @@ -4026,13 +3289,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -4046,7 +3309,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4055,13 +3318,13 @@ "11988" ], "x-ms-request-id": [ - "667dcec3-4d17-4a28-a54c-d75637a19abf" + "3e0161ec-5549-4cd9-ab1d-666a3504d821" ], "x-ms-correlation-request-id": [ - "667dcec3-4d17-4a28-a54c-d75637a19abf" + "3e0161ec-5549-4cd9-ab1d-666a3504d821" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141851Z:667dcec3-4d17-4a28-a54c-d75637a19abf" + "CENTRALUS:20220419T144255Z:3e0161ec-5549-4cd9-ab1d-666a3504d821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4070,7 +3333,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:18:50 GMT" + "Tue, 19 Apr 2022 14:42:54 GMT" ], "Expires": [ "-1" @@ -4083,13 +3346,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -4103,7 +3366,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4112,13 +3375,13 @@ "11987" ], "x-ms-request-id": [ - "b6189bc5-afe1-4dcf-89dc-6aff9e1d3157" + "62d8dc6a-61b0-4cb9-93ed-654157fe5a17" ], "x-ms-correlation-request-id": [ - "b6189bc5-afe1-4dcf-89dc-6aff9e1d3157" + "62d8dc6a-61b0-4cb9-93ed-654157fe5a17" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141906Z:b6189bc5-afe1-4dcf-89dc-6aff9e1d3157" + "CENTRALUS:20220419T144310Z:62d8dc6a-61b0-4cb9-93ed-654157fe5a17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4127,7 +3390,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:19:05 GMT" + "Tue, 19 Apr 2022 14:43:10 GMT" ], "Expires": [ "-1" @@ -4140,13 +3403,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -4160,7 +3423,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4169,13 +3432,13 @@ "11986" ], "x-ms-request-id": [ - "7b5d6ecd-f4e8-496c-8f65-d4ad48a252c7" + "c1a209e2-a180-456c-88ba-e231e38ac10b" ], "x-ms-correlation-request-id": [ - "7b5d6ecd-f4e8-496c-8f65-d4ad48a252c7" + "c1a209e2-a180-456c-88ba-e231e38ac10b" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141921Z:7b5d6ecd-f4e8-496c-8f65-d4ad48a252c7" + "CENTRALUS:20220419T144325Z:c1a209e2-a180-456c-88ba-e231e38ac10b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4184,7 +3447,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:19:20 GMT" + "Tue, 19 Apr 2022 14:43:25 GMT" ], "Expires": [ "-1" @@ -4197,13 +3460,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -4217,7 +3480,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -4226,13 +3489,13 @@ "11985" ], "x-ms-request-id": [ - "21afb25b-7dba-4d13-9647-3eb07a14e11a" + "2acafe04-7824-4aca-9e0a-2b319ec68088" ], "x-ms-correlation-request-id": [ - "21afb25b-7dba-4d13-9647-3eb07a14e11a" + "2acafe04-7824-4aca-9e0a-2b319ec68088" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141936Z:21afb25b-7dba-4d13-9647-3eb07a14e11a" + "CENTRALUS:20220419T144340Z:2acafe04-7824-4aca-9e0a-2b319ec68088" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4241,7 +3504,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:19:35 GMT" + "Tue, 19 Apr 2022 14:43:40 GMT" ], "Expires": [ "-1" @@ -4254,13 +3517,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -4277,13 +3540,13 @@ "11984" ], "x-ms-request-id": [ - "e64505aa-96c4-4d57-955c-97c3ac690227" + "68915ccd-70f6-4eaa-b4b4-53e5f6b83951" ], "x-ms-correlation-request-id": [ - "e64505aa-96c4-4d57-955c-97c3ac690227" + "68915ccd-70f6-4eaa-b4b4-53e5f6b83951" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141951Z:e64505aa-96c4-4d57-955c-97c3ac690227" + "CENTRALUS:20220419T144356Z:68915ccd-70f6-4eaa-b4b4-53e5f6b83951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4292,7 +3555,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:19:51 GMT" + "Tue, 19 Apr 2022 14:43:55 GMT" ], "Expires": [ "-1" @@ -4305,13 +3568,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3NjM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTmpNMExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM2Mzg4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0yTXpnNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.21202", + "FxVersion/4.700.22.16002", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" @@ -4328,13 +3591,13 @@ "11983" ], "x-ms-request-id": [ - "0eb0c9a0-97f3-4b6b-9255-d64d314d56dd" + "a5363d03-f86a-42c5-a99c-20cb349a5216" ], "x-ms-correlation-request-id": [ - "0eb0c9a0-97f3-4b6b-9255-d64d314d56dd" + "a5363d03-f86a-42c5-a99c-20cb349a5216" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20220513T141951Z:0eb0c9a0-97f3-4b6b-9255-d64d314d56dd" + "CENTRALUS:20220419T144356Z:a5363d03-f86a-42c5-a99c-20cb349a5216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4343,7 +3606,7 @@ "nosniff" ], "Date": [ - "Fri, 13 May 2022 14:19:51 GMT" + "Tue, 19 Apr 2022 14:43:55 GMT" ], "Expires": [ "-1" @@ -4358,7 +3621,7 @@ ], "Names": { "Test-RestorePoints": [ - "crptestps7634" + "crptestps6388" ] }, "Variables": { From c8d8dfc309a9e1c51eadd0f3ea06378de81022fc Mon Sep 17 00:00:00 2001 From: Haider Agha Date: Mon, 16 May 2022 23:20:06 -0400 Subject: [PATCH 3/5] changelog --- src/Compute/Compute/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 96f69c90bca4..2b91f2732751 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -34,7 +34,7 @@ - `New-AzSnapshotUpdateConfig` - `New-AzGalleryImageDefinition` * Added `-InstanceView` parameter to `Get-AzRestorePoint` -* New Parameters -ScriptEncoding and -ScriptString for Invoke-AzvmRunCommand and Invoke-AzvmssRunCommand +* New Parameter -ScriptString for Invoke-AzvmRunCommand and Invoke-AzvmssRunCommand * New Parameter -ScaleInPolicyForceDeletion added to Update-Azvmss ## Version 4.26.0 From b418e22cdaa4add2721eed76fdca400cf9d05125 Mon Sep 17 00:00:00 2001 From: Haider Agha Date: Tue, 17 May 2022 11:44:12 -0400 Subject: [PATCH 4/5] help changes --- src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md | 2 +- src/Compute/Compute/help/Update-AzVmss.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md b/src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md index d6cc895657fd..8e6a1c76032e 100644 --- a/src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md +++ b/src/Compute/Compute/help/Invoke-AzVmssVMRunCommand.md @@ -176,7 +176,7 @@ Accept wildcard characters: False ``` ### -ScriptString -{{ Fill ScriptString Description }} +The script as a string. ```yaml Type: System.String diff --git a/src/Compute/Compute/help/Update-AzVmss.md b/src/Compute/Compute/help/Update-AzVmss.md index 2100efe0f0bc..5ae862f37c83 100644 --- a/src/Compute/Compute/help/Update-AzVmss.md +++ b/src/Compute/Compute/help/Update-AzVmss.md @@ -724,7 +724,7 @@ Accept wildcard characters: False ``` ### -ScaleInPolicyForceDeletion -{{ Fill ScaleInPolicyForceDeletion Description }} +Applying Force Deletion when using ScaleIn Policy. ```yaml Type: System.Boolean From d12e1c223d20e03a14ebfab350d44ab28b70e88f Mon Sep 17 00:00:00 2001 From: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com> Date: Wed, 18 May 2022 09:02:12 +0800 Subject: [PATCH 5/5] Update ChangeLog.md --- src/Compute/Compute/ChangeLog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 2b91f2732751..da9e432a3b93 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -34,8 +34,8 @@ - `New-AzSnapshotUpdateConfig` - `New-AzGalleryImageDefinition` * Added `-InstanceView` parameter to `Get-AzRestorePoint` -* New Parameter -ScriptString for Invoke-AzvmRunCommand and Invoke-AzvmssRunCommand -* New Parameter -ScaleInPolicyForceDeletion added to Update-Azvmss +* Added parameter `-ScriptString` to `Invoke-AzvmRunCommand` and `Invoke-AzvmssRunCommand` +* Added parameter `-ScaleInPolicyForceDeletion` to `Update-Azvmss` ## Version 4.26.0 * Added `-ImageReferenceId` parameter to following cmdlets: `New-AzVm`, `New-AzVmConfig`, `New-AzVmss`, `Set-AzVmssStorageProfile`